3 subject="""comment 1"""
4 date="2022-03-01T18:06:32Z"
6 Since you mentioned standalone builds, I suspect you are running
7 something like: "cd git-annex.linux; ./git-annex test"
9 I have verified that is much much slower than running git-annex not
10 from the standalone build. On the order of 1+ hours vs 5 minutes.
12 There is a simple workaround, run "git-annex.linux/git-annex"
13 from somewhere outside the standalone build. That will make it much faster.
14 Here it takes about 5 minutes.
16 With that said, there's still a lot of room to speed up git-annex
17 test, and the main thing would probably be to parallelize its tests.
18 Which can be done, but needs tasty-1.2. That finally made it into debian
19 stable, so it should be able to depend on it now. I would not be surprised
20 if it can be sped up 10x that way, because tests often have to wait one or
21 more seconds after writing a file due to time stamp issues etc.
22 I have created a `paralleltest` branch with a start on that, not yet working.